home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src_win / WinHTTrack / BatchUpdate.cpp < prev    next >
C/C++ Source or Header  |  2002-02-03  |  1KB  |  47 lines

  1. // BatchUpdate.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "winhttrack.h"
  6. #include "BatchUpdate.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CBatchUpdate property page
  16.  
  17. IMPLEMENT_DYNCREATE(CBatchUpdate, CPropertyPage)
  18.  
  19. CBatchUpdate::CBatchUpdate() : CPropertyPage(CBatchUpdate::IDD)
  20. {
  21.     //{{AFX_DATA_INIT(CBatchUpdate)
  22.         // NOTE: the ClassWizard will add member initialization here
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26. CBatchUpdate::~CBatchUpdate()
  27. {
  28. }
  29.  
  30. void CBatchUpdate::DoDataExchange(CDataExchange* pDX)
  31. {
  32.     CPropertyPage::DoDataExchange(pDX);
  33.     //{{AFX_DATA_MAP(CBatchUpdate)
  34.         // NOTE: the ClassWizard will add DDX and DDV calls here
  35.     //}}AFX_DATA_MAP
  36. }
  37.  
  38.  
  39. BEGIN_MESSAGE_MAP(CBatchUpdate, CPropertyPage)
  40.     //{{AFX_MSG_MAP(CBatchUpdate)
  41.         // NOTE: the ClassWizard will add message map macros here
  42.     //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CBatchUpdate message handlers
  47.